feat(reporter): HTML report format + CLI --format html#73
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements GitHub Issue #62: HTML report format + CLI
--format html.Adds a self-contained HTML report generator (
generateHtmlReport) that mirrors the existing Markdown reporter's sections — session overview, timeline summary, failures, suggested next steps, and event appendix — with clean dark-theme inline CSS and no external dependencies.Changes
packages/toolkit/src/reporter/html.ts(new):generateHtmlReport(result: AnalysisResult): string— returns a complete<!DOCTYPE html>document with inline CSS. All user-supplied content (event payloads, descriptions, metadata) is escaped viaescapeHtml()to prevent XSS / injection.packages/toolkit/src/reporter/html.test.ts(new): 11 tests covering:<htmland</html><script>→<script>in failure descriptions and metadatasrc/href/<link>/<script src>)packages/toolkit/src/reporter/index.ts(modified): addedexport { generateHtmlReport } from './html.js';packages/toolkit/src/cli/commands/report.ts(modified): importsgenerateHtmlReport; dispatches to it when--format htmlis passed, otherwise usesgenerateMarkdownReportas before.Verification
pnpm testpnpm typecheckpnpm lintreplay/engine.test.ts)pnpm formatpnpm format:checkCloses #62